home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / MSDOS / (m)aan / CTUTOR2.ARC / RECURSON.C < prev    next >
Text File  |  1985-02-05  |  256b  |  18 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    index = 8;
  6.    count_dn(index);
  7. }
  8.  
  9. count_dn(count)
  10. int count;
  11. {
  12.    count--;
  13.    printf("The value of the count is %d\n",count);
  14.    if (count > 0)
  15.       count_dn(count);
  16.    printf("Now the count is %d\n",count);
  17. }
  18.